home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 240 (DVD) / Issue 240 - February 2008 - DPCS0208DVD.ISO / Extras / NetObjects Fusion / NOF10.exe / data1.cab / FSI / lib / nof / dataobjects / tables / ecomm / ShippingTable.js < prev    next >
Encoding:
Text File  |  2007-04-11  |  768 b   |  20 lines

  1. function NOF_DataObjects_ShippingTable(){
  2.   this.__proto__        = NOF_DataObjects_ShippingTable.prototype;
  3.  
  4.   this.SUPER( NOF_TableTypes.NODELESS | NOF_TableTypes.ECOMM_CATALOG, "Shipping", "Id");
  5.   this.__constructor__ =  NOF_DataObjects_ShippingTable; 
  6. }
  7.  
  8. NOF_DataObjects_ShippingTable.inherits( NOF.DO.Table );{  
  9.   var NOF_DataObjects_ShippingTable_DDL = new Array(
  10.     new NOF.DO.FieldInfo("Id", NOF.DO.FieldType.INTEGER, 0),
  11.     new NOF.DO.FieldInfo("Value", NOF.DO.FieldType.VARCHAR, 1)
  12.   ); 
  13.  
  14.   NOF_DataObjects_ShippingTable.prototype.COL_ID    = 0;  
  15.   NOF_DataObjects_ShippingTable.prototype.COL_VALUE = 1;  
  16.     
  17.   NOF_DataObjects_ShippingTable.prototype.getDDL = function getDDL(){
  18.     return NOF_DataObjects_ShippingTable_DDL;
  19.   }; 
  20. }